go/ast.SendStmt.Arrow (field)

5 uses

	go/ast (current package)
		ast.go#L656: 		Arrow token.Pos // position of "<-"

	go/parser
		parser.go#L2001: 		return &ast.SendStmt{Chan: x[0], Arrow: arrow, Value: y}, false
		parser.go#L2320: 			comm = &ast.SendStmt{Chan: lhs[0], Arrow: arrow, Value: rhs}

	go/printer
		nodes.go#L1388: 		p.setPos(s.Arrow)

	go/types
		stmt.go#L471: 		if elem := check.chanElem(inNode(s, s.Arrow), &ch, false); elem != nil {